home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
WebObjects
/
SourceCode
/
DictionaryTableEx
/
DictionaryTableEx.wod
< prev
next >
Wrap
Text File
|
1996-04-20
|
826b
|
45 lines
////////////////////////
// DictionaryTable
// by Charles Lloyd
////////////////////////
DictionaryTable: DictionaryTable {
dictionary=localDictionary;
cellPadding = 2;
};
KeyTextField: WOTextField {
value = keyFieldValue;
};
ValueTextField: WOTextField {
value = valueFieldValue;
};
AddEntrySubmit: WOSubmitButton {
action = addEntry;
value = "Update Dictionary"
};
DeleteKeyTextField: WOTextField {
value = deleteKeyFieldValue;
};
DeleteEntrySubmit: WOSubmitButton {
action = deleteEntry;
value = "Delete Key"
};
ComponentDescription: ComponentDescription {
componentName = "DictionaryTable";
};
ShowSourceControls: ShowSource {
componentName = "DictionaryTable";
};
RCBody: WOGenericContainer {
elementName = "body";
bgcolor = WOApp.globalBackgroundColor;
};